home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 33
/
Amiga Format AFCD33 (Issue 117, Dec 1998).iso
/
-seriously_amiga-
/
sound
/
cs1xeditor
/
install
< prev
next >
Wrap
Text File
|
1998-09-07
|
1KB
|
64 lines
;
; Installation of CS1x Editor
;
ECHO "H"
ECHO "This short installation script will install the midi.library"
ECHO "in LIBS: and two fonts in FONTS: if they are not already there."
ECHO "No files will be overwritten, changed or deleted."
ASK "*nProceed with installation (Y/N)?"
IF NOT WARN
ECHO "Aborted..."
QUIT
ENDIF
ECHO "H"
IF EXISTS "LIBS:midi.library"
ECHO "You already have midi.library installed in LIBS:"
ELSE
ECHO "You have not got a midi.library installed in LIBS:"
ENDIF
ASK "*nDo you wish to (re-)install midi.library in LIBS: (Y/N)?"
IF WARN
COPY libs/midi.library LIBS:
ENDIF
ECHO "H"
ECHO "Checking and installing fonts..."
SET >NIL: fixneeded 0
IF NOT EXISTS "FONTS:XHelvetica"
ECHO "Installing XHelvetica.font"
COPY fonts/XHelvetica#? FONTS: ALL
ELSE
IF NOT EXISTS "FONTS:XHelvetica/9"
ECHO "Installing XHelvetica.font size 9"
COPY fonts/XHelvetica/9 FONTS:XHelvetica
SET >NIL: fixneeded 1
ENDIF
ENDIF
IF NOT EXISTS "FONTS:tupelo"
ECHO "Installing tupelo.font"
COPY fonts/tupelo#? FONTS: ALL
ELSE
IF NOT EXISTS "FONTS:tupelo/12b"
ECHO "Installing tupelo.font size 12b"
COPY fonts/tupelo/12b FONTS:tupelo
SET >NIL: fixneeded 1
ENDIF
ENDIF
IF "$fixneeded" EQ 0
ECHO "No fonts to install (already present in FONTS:)"
ELSE
ECHO "Fixing fonts using FixFonts... please wait"
FixFonts >NIL:
ENDIF
UNSET >NIL: fixneeded
ECHO "H"
ECHO "Installation complete."
QUIT